-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.3.1.3 (d sin)^m (a+b tan)^n.nb
More file actions
2375 lines (2316 loc) · 118 KB
/
4.3.1.3 (d sin)^m (a+b tan)^n.nb
File metadata and controls
2375 lines (2316 loc) · 118 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 118063, 2366]
NotebookOptionsPosition[ 113951, 2255]
NotebookOutlinePosition[ 115719, 2309]
CellTagsIndexPosition[ 115676, 2306]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[Cell[TextData[{
StyleBox["Rules for integrands of the form ",
FontFamily->"Arial"],
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"]}]],
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9,
3.5193415113404875`*^9}, {3.5193513965602303`*^9,
3.519351397420232*^9}, {3.5194037839416766`*^9, 3.5194037847117205`*^9},
3.52105258275843*^9, 3.5210531741726685`*^9, {3.521057461672199*^9,
3.5210574760242243`*^9}, {3.521059881564049*^9, 3.521059886088057*^9}, {
3.5213902158895197`*^9, 3.521390217543123*^9}, {3.521390827878595*^9,
3.521390829376197*^9}, {3.5214688792561245`*^9, 3.521468879443325*^9}, {
3.523320201951167*^9, 3.523320202247567*^9}, {3.5288596764894824`*^9,
3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9,
3.5295115433443794`*^9}, {3.529521412127842*^9, 3.529521414647986*^9}, {
3.529529429975619*^9, 3.529529432955224*^9}, 3.5340074894011116`*^9,
3.5415537711400824`*^9, {3.5415538409034047`*^9, 3.541553841106205*^9}, {
3.5415564120531206`*^9, 3.5415564206955357`*^9},
3.5415565488341613`*^9, {3.5415605631516123`*^9,
3.5415605860836525`*^9}, {3.541561323247347*^9, 3.5415613234501476`*^9},
3.5416162115728135`*^9, {3.5416506679001875`*^9, 3.541650687980216*^9},
3.560533948494043*^9, 3.560538006319724*^9, {3.5605392374714475`*^9,
3.5605392382814484`*^9}, 3.5606250606115856`*^9, 3.5617573869745255`*^9,
3.561757856045182*^9, {3.561761339582559*^9, 3.5617613636025925`*^9}, {
3.5617652519980364`*^9, 3.561765252188037*^9}, {3.561767460571129*^9,
3.5617674608411293`*^9}, 3.5621081762414055`*^9, {3.5621084468550806`*^9,
3.5621084519718895`*^9}, 3.563340740121106*^9},
FontWeight->"Bold"]
}], "None"]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.4965234353062396`*^9, {3.5193214825316973`*^9, 3.5193214852617016`*^9}, {
3.523316399894187*^9, 3.5233164032341914`*^9}, {3.523318350558202*^9,
3.5233183516382036`*^9}, {3.536542725780803*^9, 3.536542725780803*^9}, {
3.5367764878952584`*^9, 3.5367764886452594`*^9}, {3.544322815209103*^9,
3.5443228192963104`*^9}, {3.5450662624913826`*^9, 3.545066292141424*^9}, {
3.545066402271579*^9, 3.5450664054415827`*^9}, {3.5450834884295015`*^9,
3.5450834895895033`*^9}, {3.5454961263762493`*^9,
3.5454961321462574`*^9}, {3.5454963863166127`*^9,
3.5454964580867133`*^9}, {3.545497046127537*^9, 3.545497046127537*^9}, {
3.5454971130676303`*^9, 3.545497136257663*^9}, 3.545610399977621*^9, {
3.546040778592962*^9, 3.546040778592962*^9}, {3.5461052065706367`*^9,
3.5461052249474688`*^9}, {3.546191339879622*^9, 3.5461913430596266`*^9}, {
3.5462141824067917`*^9, 3.5462142145768366`*^9}, {3.5462145455473003`*^9,
3.5462145601073203`*^9}, {3.5463149785974817`*^9,
3.5463149794195285`*^9}, {3.5488738437683954`*^9,
3.5488738699084315`*^9}, {3.5488890647645535`*^9, 3.548889080804576*^9}, {
3.5505951583099127`*^9, 3.5505951620351257`*^9}, {3.5505952613798075`*^9,
3.5505952630869055`*^9}, {3.5535321133435373`*^9,
3.5535321173537664`*^9}, {3.5536175341411576`*^9,
3.5536175352411594`*^9}, {3.55396599671187*^9, 3.55396599862998*^9}, {
3.560190530310161*^9, 3.560190628512334*^9}, {3.5602162723838596`*^9,
3.5602162793138695`*^9}, {3.5606249190913877`*^9, 3.560624924321395*^9}, {
3.5617663419995623`*^9, 3.5617663705796027`*^9}, {3.5617666456099873`*^9,
3.561766656350003*^9}, {3.562107691486154*^9, 3.5621077390350375`*^9}, {
3.5621080165751247`*^9, 3.5621080185719285`*^9}, {3.5621081511877613`*^9,
3.5621081511877613`*^9}, {3.5633407304210925`*^9, 3.563340730891093*^9}, {
3.575852587746504*^9, 3.575852593256511*^9}, {3.575852659996605*^9,
3.575852659996605*^9}, {3.575852743186721*^9, 3.575852743186721*^9}, {
3.57585284254686*^9, 3.575852895956935*^9}, {3.575853026617118*^9,
3.575853038617135*^9}, {3.575853153907296*^9, 3.575853185757341*^9}, {
3.575853290447487*^9, 3.575853290447487*^9}, {3.5758553923824325`*^9,
3.5758553923824325`*^9}, {3.5758554525725164`*^9,
3.5758554525725164`*^9}, {3.5758555750526876`*^9,
3.5758555750526876`*^9}, {3.5758556596228065`*^9,
3.5758556596228065`*^9}, {3.575855725612899*^9, 3.575855725612899*^9}, {
3.575855810993018*^9, 3.575855810993018*^9}, {3.57585588373312*^9,
3.57585588374312*^9}, {3.6118085012028246`*^9, 3.6118085085702457`*^9}, {
3.675022357676506*^9, 3.675022357676506*^9}, {3.675102574863349*^9,
3.675102574863349*^9}},
TextAlignment->Center,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"], " ", Cell[TextData[Cell[BoxData[
RowBox[{
FractionBox["m", "2"], "\[Element]", "\[DoubleStruckCapitalZ]"}]]]],
"None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519247363296011*^9, 3.519247363796012*^9}, 3.519258420199427*^9,
3.5192584863895197`*^9, {3.519320760160028*^9, 3.519320767367241*^9},
3.5193299099191504`*^9, {3.5193300315093203`*^9, 3.519330031709321*^9}, {
3.5193323099968634`*^9, 3.5193324414114943`*^9}, {3.5193415804486094`*^9,
3.5193415824298124`*^9}, {3.5193459537101994`*^9,
3.5193459567210045`*^9}, {3.5193514074002457`*^9,
3.5193514076802464`*^9}, {3.5194037987985263`*^9, 3.519403799124545*^9},
3.519410735765964*^9, {3.5233155477729936`*^9, 3.5233155497329965`*^9}, {
3.5233157343632545`*^9, 3.5233157343632545`*^9}, 3.5239204163859615`*^9, {
3.5239209756969433`*^9, 3.523920976851345*^9}, {3.5239210574690866`*^9,
3.5239210738491154`*^9}, {3.529529514995768*^9, 3.52952953897301*^9}, {
3.529530096003188*^9, 3.5295300961903887`*^9}, 3.534007429411028*^9, {
3.5415552865111437`*^9, 3.541555295262759*^9}, 3.5416244798324237`*^9, {
3.5416246450471644`*^9, 3.541624690056343*^9}, 3.541626366779134*^9,
3.541628901025448*^9, 3.5416290724956875`*^9, 3.5417936736567183`*^9, {
3.541801799109347*^9, 3.5418018093593607`*^9}, 3.5418018795094595`*^9,
3.541801925819524*^9, {3.5418024417002463`*^9, 3.5418024419302464`*^9}, {
3.5418024734002905`*^9, 3.5418024867203093`*^9}, {3.541804026542465*^9,
3.541804026542465*^9}, {3.5418051959141026`*^9, 3.5418051961241026`*^9}, {
3.5418055896246533`*^9, 3.5418055898246536`*^9}, {3.541807928007927*^9,
3.5418079282179275`*^9}, {3.541816058189309*^9, 3.54181605834931*^9}, {
3.541895620942338*^9, 3.5418956211823387`*^9}, {3.553299727838824*^9,
3.5532997300288267`*^9}, {3.5532999791891756`*^9,
3.5532999817291794`*^9}, {3.553305063816294*^9, 3.5533050640562944`*^9}, {
3.5533051019963474`*^9, 3.553305104566351*^9}, {3.5533054443968267`*^9,
3.5533054475368314`*^9}, 3.5533078575102053`*^9, {3.5533106008040457`*^9,
3.5533106008040457`*^9}, {3.5546831350233016`*^9, 3.554683135273302*^9},
3.560216298603896*^9, 3.5606251917417693`*^9, {3.560975839890805*^9,
3.560975839890805*^9}, {3.5609767760421157`*^9, 3.5609767854021287`*^9}, {
3.560976852662223*^9, 3.560976853522224*^9}, 3.5609769271023273`*^9, {
3.560976964532379*^9, 3.5609769756223946`*^9}, {3.561265017585923*^9,
3.5612650326711497`*^9}, {3.561309913861724*^9, 3.561309913861724*^9},
3.561310285412244*^9, 3.5613129177059293`*^9, {3.561422814190879*^9,
3.5614228294009*^9}, 3.561925845701116*^9, 3.5619260595434155`*^9,
3.563582501469946*^9, {3.5635826458501477`*^9, 3.5635826458601475`*^9}, {
3.5635826838002005`*^9, 3.5635826838002005`*^9}, {3.5636401143299756`*^9,
3.5636401351716127`*^9}, {3.563640488668233*^9, 3.5636405189634867`*^9},
3.563640727676253*^9, {3.56400126775679*^9, 3.5640012686867914`*^9}, {
3.5664097415588894`*^9, 3.5664097555606594`*^9}, {3.566409889423624*^9,
3.566409891532736*^9}, {3.566410469315651*^9, 3.5664104695616646`*^9}, {
3.5664105438889236`*^9, 3.5664105443159485`*^9}, {3.5664107570201955`*^9,
3.566410757222207*^9}, {3.5669476569667344`*^9, 3.5669476796179743`*^9}, {
3.5669484243788824`*^9, 3.5669484245192823`*^9}, 3.566965332309761*^9,
3.6750223720733294`*^9, {3.6751024463713217`*^9, 3.675102446386922*^9}, {
3.6751025556693153`*^9, 3.6751025928249807`*^9}, {3.675103872496704*^9,
3.675103872706704*^9}, {3.677261315201498*^9, 3.677261315451099*^9}, {
3.6773009334157195`*^9, 3.677300935726852*^9}, {3.691635428898018*^9,
3.691635429108018*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Integration by substitution", "Subsubsection",
CellChangeTimes->{
3.479686820458373*^9, {3.490657960122612*^9, 3.49065796095366*^9},
3.4964414996009283`*^9, {3.4964447088058186`*^9, 3.4964447131058245`*^9},
3.496528844063812*^9, 3.497575950496916*^9, 3.4975775797018027`*^9,
3.497639496888481*^9, 3.4976636252234545`*^9, 3.497665167504564*^9, {
3.561226054703641*^9, 3.5612260578536453`*^9}, {3.5636402263069725`*^9,
3.5636402320945826`*^9}, {3.5664097729606185`*^9, 3.566409776396814*^9}, {
3.56694768875959*^9, 3.5669476973396053`*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "2"], "\[Equal]",
FractionBox[
SuperscriptBox[
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "2"],
RowBox[{"1", "+",
SuperscriptBox[
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "2"]}]]}]]]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, {3.497575979956957*^9, 3.4975760172870092`*^9}, {
3.4980703053275614`*^9, 3.4980703053275614`*^9}, 3.4980704431694036`*^9,
3.4980705505911922`*^9, {3.5607208232359123`*^9, 3.5607208898060055`*^9}, {
3.5607332335257874`*^9, 3.5607332335257874`*^9}, {3.5607332688458366`*^9,
3.560733281135854*^9}, {3.560733345915944*^9, 3.5607334415960784`*^9}, {
3.5607850523197703`*^9, 3.56078505798258*^9}, {3.5700615266964436`*^9,
3.570061544306468*^9}, {3.5700617554567633`*^9, 3.5700617886868105`*^9}, {
3.5700621611073313`*^9, 3.570062184877365*^9}, {3.675102446418122*^9,
3.6751024464337215`*^9}}],
Cell[TextData[{
"Basis:",
" If ",
Cell[BoxData[
RowBox[{
FractionBox["m", "2"], "\[Element]", "\[DoubleStruckCapitalZ]"}]]],
", then",
" ",
Cell[BoxData[
RowBox[{
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"],
RowBox[{"F", "[",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], "]"}]}], "\[Equal]",
RowBox[{
FractionBox["b", "f"],
RowBox[{"Subst", "[",
RowBox[{
FractionBox[
RowBox[{
SuperscriptBox["x", "m"],
RowBox[{"F", "[", "x", "]"}]}],
SuperscriptBox[
RowBox[{"(",
RowBox[{
SuperscriptBox["b", "2"], "+",
SuperscriptBox["x", "2"]}], ")"}],
RowBox[{
FractionBox["m", "2"], "+", "1"}]]], ",", "x", ",",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], "]"}],
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}]}]}]}]]]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, {3.497575979956957*^9, 3.4975760172870092`*^9}, {
3.4980703053275614`*^9, 3.4980703053275614`*^9}, 3.4980704431694036`*^9,
3.4980705505911922`*^9, {3.5607208232359123`*^9, 3.5607208898060055`*^9}, {
3.5607332335257874`*^9, 3.5607332335257874`*^9}, {3.5607332688458366`*^9,
3.560733281135854*^9}, {3.560733345915944*^9, 3.5607334415960784`*^9}, {
3.5607850523197703`*^9, 3.56078505798258*^9}, {3.568838799196664*^9,
3.568838799196664*^9}, {3.5688391874072075`*^9, 3.5688392265572624`*^9}, {
3.5688392643773155`*^9, 3.5688393870974874`*^9}, {3.568999398719596*^9,
3.5689994240072403`*^9}, {3.568999785288275*^9, 3.568999806005111*^9}, {
3.5700614536563416`*^9, 3.5700615023864093`*^9}, {3.570061826476863*^9,
3.570061855586904*^9}, {3.5700619318870106`*^9, 3.5700619318870106`*^9}, {
3.5700621981773834`*^9, 3.570062218567412*^9}, {3.57006231673755*^9,
3.57006231673755*^9}, {3.6750217623224535`*^9, 3.6750217623224535`*^9}, {
3.675102446464922*^9, 3.675102446480522*^9}, {3.675102666966713*^9,
3.675102666966713*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
FractionBox["m", "2"], "\[Element]", "\[DoubleStruckCapitalZ]"}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, 3.496451213764926*^9,
3.496528833243797*^9, {3.4975777080419827`*^9, 3.4975777244120054`*^9},
3.4976397903561964`*^9, {3.497663553088928*^9, 3.4976635622149444`*^9},
3.4976651743061757`*^9, {3.4991317949832096`*^9, 3.4991317953032103`*^9}, {
3.561226279503955*^9, 3.5612262831739607`*^9}, {3.5612263210940137`*^9,
3.5612263409240413`*^9}, {3.561227979331335*^9, 3.561227980911338*^9}, {
3.561309917491729*^9, 3.561309917491729*^9}, {3.561422840120915*^9,
3.561422840120915*^9}, {3.5635826847702026`*^9, 3.5635826847702026`*^9}, {
3.563640513877877*^9, 3.563640513877877*^9}, {3.5664098954499474`*^9,
3.5664098954499474`*^9}, {3.566948398732437*^9, 3.5669484051128483`*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox["b", "f"]}]}],
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
RowBox[{
SuperscriptBox["x", "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+", "x"}], ")"}], "n"]}],
SuperscriptBox[
RowBox[{"(",
RowBox[{
SuperscriptBox["b", "2"], "+",
SuperscriptBox["x", "2"]}], ")"}],
RowBox[{
FractionBox["m", "2"], "+", "1"}]]],
RowBox[{"\[DifferentialD]", "x"}]}]}], ",", "x", ",",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], "]"}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.49644160092107*^9,
3.496441663571158*^9, {3.496528814953771*^9, 3.4965288223737817`*^9},
3.497576045657049*^9, 3.497576089857111*^9, 3.4975776169418545`*^9, {
3.497577677171939*^9, 3.497577691381959*^9}, {3.4976395112561064`*^9,
3.4976395477133703`*^9}, {3.49766342891271*^9, 3.497663457772761*^9}, {
3.497663580747777*^9, 3.497663583134581*^9}, {3.4976652106074395`*^9,
3.4976652204666567`*^9}, 3.4976652749419527`*^9, {3.4991316095329504`*^9,
3.4991316274529753`*^9}, {3.4991318033632216`*^9, 3.499131806573226*^9}, {
3.56122609003369*^9, 3.5612261336137514`*^9}, {3.5612261841238217`*^9,
3.561226212973862*^9}, {3.561226245623908*^9, 3.561226251553916*^9},
3.5612273551154613`*^9, 3.561227987771347*^9, {3.561340595399388*^9,
3.5613406051509457`*^9}, 3.5619258475711184`*^9, 3.561926060883417*^9, {
3.5635826458901477`*^9, 3.563582645920148*^9}, {3.563640146403632*^9,
3.563640206635338*^9}, {3.5640012765968027`*^9, 3.5640013158368573`*^9}, {
3.5664097864990063`*^9, 3.5664097932853947`*^9}, {3.566409937449648*^9,
3.56640996820636*^9}, {3.566410007219513*^9, 3.5664100708410654`*^9}, {
3.5664105611489115`*^9, 3.5664105743376245`*^9}, {3.56694830948468*^9,
3.566948384832813*^9}, 3.5669484411177115`*^9, {3.566948553375509*^9,
3.5669485622675247`*^9}, 3.566948642826066*^9, {3.566948680016531*^9,
3.566948683978938*^9}, {3.5669653858098354`*^9, 3.5669654071898656`*^9}, {
3.5669655178900204`*^9, 3.566965557020075*^9}, 3.5669656451101985`*^9,
3.5711019464541683`*^9, {3.6750220481318007`*^9, 3.6750220753253565`*^9}, {
3.675102446496122*^9, 3.675102446511722*^9}, {3.6751025958357863`*^9,
3.675102599220992*^9}, 3.675102667933914*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, {3.563640393632866*^9, 3.563640396971272*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"sin", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}], "^", "m_"}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a_", "+",
RowBox[{"b_.", "*",
RowBox[{"tan", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}]}], ")"}], "^", "n_"}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{"b", "/", "f"}], "*",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"x", "^", "m"}], "*",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a", "+", "x"}], ")"}], "^", "n"}], "/",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"b", "^", "2"}], "+",
RowBox[{"x", "^", "2"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{
RowBox[{"m", "/", "2"}], "+", "1"}], ")"}]}]}]}], ",", "x"}],
"]"}], ",", "x", ",",
RowBox[{"b", "*",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}]}], "]"}]}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "e", ",", "f", ",", "n"}], "}"}], ",",
"x"}], "]"}], " ", "&&", " ",
RowBox[{"IntegerQ", "[",
RowBox[{"m", "/", "2"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.4964415782510386`*^9,
3.4965287890937347`*^9, 3.4975759366868963`*^9, 3.497577547811758*^9,
3.49758349857209*^9, 3.4976394822868557`*^9, 3.497663384967433*^9, {
3.4976635889065914`*^9, 3.497663592322997*^9}, 3.4976651612957525`*^9, {
3.49913160954295*^9, 3.4991316274529753`*^9}, 3.4991317842431946`*^9,
3.5609702671974792`*^9, 3.5609704436320634`*^9, {3.561226361824071*^9,
3.5612263834141006`*^9}, {3.561226446604189*^9, 3.5612264740842276`*^9},
3.561227358565466*^9, {3.5612280266714015`*^9, 3.5612280408014216`*^9}, {
3.5613099207317333`*^9, 3.561309931941749*^9}, {3.5613406122153497`*^9,
3.561340613378416*^9}, 3.5613406447702117`*^9, 3.561422359510242*^9, {
3.5614227681308146`*^9, 3.5614227763408256`*^9}, 3.5614228733109617`*^9,
3.561925789337036*^9, {3.563582645930148*^9, 3.563582645950148*^9},
3.5635827193002505`*^9, 3.563584203012328*^9, 3.5636403669724197`*^9, {
3.5636404015888805`*^9, 3.5636404405109487`*^9}, {3.563640547012336*^9,
3.5636405527843456`*^9}, {3.563644705777895*^9, 3.563644715995479*^9}, {
3.5640013253968706`*^9, 3.564001349736905*^9}, {3.5664101738574734`*^9,
3.566410177768696*^9}, {3.5664102614169064`*^9, 3.5664102934350777`*^9},
3.5664104870136633`*^9, {3.56641058673332*^9, 3.5664106053883624`*^9},
3.566948717487797*^9, {3.5669487823995113`*^9, 3.5669487975627375`*^9}, {
3.566965734110323*^9, 3.566965748950344*^9}, 3.5676495108376207`*^9, {
3.571101954334179*^9, 3.5711019604041877`*^9}, {3.5760028344880714`*^9,
3.576002922138194*^9}, {3.6750221315515723`*^9, 3.6750221666295786`*^9}, {
3.6751024660917563`*^9, 3.675102489324198*^9}, 3.675102519547451*^9,
3.6751026717091208`*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["2.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"], " ", Cell[TextData[Cell[BoxData[
RowBox[{
FractionBox[
RowBox[{"m", "-", "1"}], "2"], "\[Element]",
"\[DoubleStruckCapitalZ]"}]]]], "None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519250976620308*^9, 3.5192509795375133`*^9}, 3.5192520188581386`*^9, {
3.5193215829334736`*^9, 3.519321595725496*^9}, {3.5194112531544743`*^9,
3.5194112537784753`*^9}, {3.519411537636574*^9, 3.519411568711828*^9}, {
3.519793882583559*^9, 3.519793883878361*^9}, {3.5214731238817034`*^9,
3.521473124371704*^9}, {3.523316505044334*^9, 3.523316505044334*^9}, {
3.5233184226511183`*^9, 3.523318422861119*^9}, 3.5328367822219863`*^9, {
3.5328742732655816`*^9, 3.5328742968684235`*^9}, {3.532874332701686*^9,
3.532874341843302*^9}, {3.532874546156861*^9, 3.532874552443672*^9}, {
3.5328756408887835`*^9, 3.5328756426671867`*^9}, {3.5328756840852594`*^9,
3.532875690340871*^9}, {3.5328775995694237`*^9, 3.532877607619038*^9}, {
3.5330804511936502`*^9, 3.5330804511936502`*^9}, {3.5330827213068285`*^9,
3.5330827218568287`*^9}, {3.5368634501889877`*^9,
3.5368634503449883`*^9}, {3.537654628221073*^9, 3.537654628221073*^9}, {
3.5376556650325246`*^9, 3.5376556690825305`*^9}, {3.5376558319727583`*^9,
3.537655832122759*^9}, {3.5403190180369616`*^9, 3.540319018277975*^9}, {
3.540320078404611*^9, 3.5403200969116697`*^9}, {3.54497301407633*^9,
3.5449730147315316`*^9}, {3.5449730455259857`*^9, 3.54497310485289*^9},
3.5449734027198133`*^9, {3.544973705703545*^9, 3.5449737123023567`*^9}, {
3.5449743847103376`*^9, 3.5449743847103376`*^9}, {3.5449897190542192`*^9,
3.5449897371142445`*^9}, 3.54501330464754*^9, 3.5450140205483975`*^9, {
3.5450140745556927`*^9, 3.545014074867693*^9}, {3.545014174442668*^9,
3.5450141765018716`*^9}, 3.5450143633121996`*^9, {3.5450664467216406`*^9,
3.5450664468916407`*^9}, {3.5450708578278165`*^9, 3.545070858737818*^9}, {
3.5454157832263145`*^9, 3.5454158086387587`*^9}, {3.5454238599089427`*^9,
3.5454238602689433`*^9}, 3.5454965482568398`*^9, {3.545497042817532*^9,
3.545497042817532*^9}, {3.545497076297579*^9, 3.5454970772875805`*^9}, {
3.545503623646745*^9, 3.5455036255667477`*^9}, {3.546105323118441*^9,
3.5461053352552624`*^9}, {3.5463150330395956`*^9, 3.546315033228606*^9}, {
3.5634065509243546`*^9, 3.5634065644543734`*^9}, {3.566939803971632*^9,
3.5669398110536423`*^9}, {3.568662105597446*^9, 3.568662106787448*^9}, {
3.5711040326550937`*^9, 3.5711040353650975`*^9}, 3.6750223732333956`*^9, {
3.675102446542922*^9, 3.675102446542922*^9}, 3.6751026045094013`*^9, {
3.675103874058707*^9, 3.6751038742487073`*^9}, {3.677261316683501*^9,
3.677261316886301*^9}, {3.67730093761896*^9, 3.677300937897976*^9}, {
3.6916354303780193`*^9, 3.6916354334680243`*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"], " ", Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{
FractionBox[
RowBox[{"m", "-", "1"}], "2"], "\[Element]",
"\[DoubleStruckCapitalZ]"}], " ", "\[And]", " ",
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519247363296011*^9, 3.519247363796012*^9}, 3.519258420199427*^9,
3.5192584863895197`*^9, {3.519320760160028*^9, 3.519320767367241*^9},
3.5193299099191504`*^9, {3.5193300315093203`*^9, 3.519330031709321*^9}, {
3.5193323099968634`*^9, 3.5193324414114943`*^9}, {3.5193415804486094`*^9,
3.5193415824298124`*^9}, {3.5193459537101994`*^9,
3.5193459567210045`*^9}, {3.5193514074002457`*^9,
3.5193514076802464`*^9}, {3.5194037987985263`*^9, 3.519403799124545*^9},
3.519410735765964*^9, {3.5233155477729936`*^9, 3.5233155497329965`*^9}, {
3.5233157343632545`*^9, 3.5233157343632545`*^9}, 3.5239204163859615`*^9, {
3.5239209756969433`*^9, 3.523920976851345*^9}, {3.5239210574690866`*^9,
3.5239210738491154`*^9}, {3.529529514995768*^9, 3.52952953897301*^9}, {
3.529530096003188*^9, 3.5295300961903887`*^9}, 3.534007429411028*^9, {
3.5415552865111437`*^9, 3.541555295262759*^9}, 3.5416244798324237`*^9, {
3.5416246450471644`*^9, 3.541624690056343*^9}, 3.541626366779134*^9,
3.541628901025448*^9, 3.5416290724956875`*^9, 3.5417936736567183`*^9, {
3.541801799109347*^9, 3.5418018093593607`*^9}, 3.5418018795094595`*^9,
3.541801925819524*^9, {3.5418024417002463`*^9, 3.5418024419302464`*^9}, {
3.5418024734002905`*^9, 3.5418024867203093`*^9}, {3.541804026542465*^9,
3.541804026542465*^9}, {3.5418051959141026`*^9, 3.5418051961241026`*^9}, {
3.5418055896246533`*^9, 3.5418055898246536`*^9}, {3.541807928007927*^9,
3.5418079282179275`*^9}, {3.541816058189309*^9, 3.54181605834931*^9}, {
3.541895620942338*^9, 3.5418956211823387`*^9}, {3.553299727838824*^9,
3.5532997300288267`*^9}, {3.5532999791891756`*^9,
3.5532999817291794`*^9}, {3.553305063816294*^9, 3.5533050640562944`*^9}, {
3.5533051019963474`*^9, 3.553305104566351*^9}, {3.5533054443968267`*^9,
3.5533054475368314`*^9}, 3.5533078575102053`*^9, {3.5533106008040457`*^9,
3.5533106008040457`*^9}, {3.5546831350233016`*^9, 3.554683135273302*^9},
3.560216298603896*^9, 3.5606251917417693`*^9, {3.560975839890805*^9,
3.560975839890805*^9}, {3.5609767760421157`*^9, 3.5609767854021287`*^9}, {
3.560976852662223*^9, 3.560976853522224*^9}, 3.5609769271023273`*^9, {
3.560976964532379*^9, 3.5609769756223946`*^9}, {3.561265017585923*^9,
3.5612650326711497`*^9}, {3.561309913861724*^9, 3.561309913861724*^9},
3.561310285412244*^9, 3.5613129177059293`*^9, {3.561422814190879*^9,
3.5614228294009*^9}, 3.561925845701116*^9, 3.5619260595434155`*^9,
3.563582501469946*^9, {3.5635826458501477`*^9, 3.5635826458601475`*^9}, {
3.5635826838002005`*^9, 3.5635826838002005`*^9}, {3.5636401143299756`*^9,
3.5636401351716127`*^9}, {3.563640488668233*^9, 3.5636405189634867`*^9},
3.563640727676253*^9, {3.56400126775679*^9, 3.5640012686867914`*^9}, {
3.5664097415588894`*^9, 3.5664097555606594`*^9}, {3.566409889423624*^9,
3.566409891532736*^9}, {3.566410469315651*^9, 3.5664104695616646`*^9}, {
3.566939601096325*^9, 3.5669396022073307`*^9}, 3.5669397867115927`*^9, {
3.567649530337648*^9, 3.5676495305076485`*^9}, {3.5686621080674496`*^9,
3.568662111887455*^9}, {3.57110406554514*^9, 3.5711040716151485`*^9},
3.6750223806978226`*^9, {3.675102446558522*^9, 3.675102446574122*^9},
3.6751026059290037`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Algebraic expansion", "Subsubsection",
CellChangeTimes->{
3.479686820458373*^9, {3.490657960122612*^9, 3.49065796095366*^9},
3.4964414996009283`*^9, {3.4964447088058186`*^9, 3.4964447131058245`*^9},
3.496528844063812*^9, 3.497575950496916*^9, 3.4975775797018027`*^9,
3.497639496888481*^9, 3.4976636252234545`*^9, 3.497665167504564*^9, {
3.561226054703641*^9, 3.5612260578536453`*^9}, {3.5636402263069725`*^9,
3.5636402320945826`*^9}, {3.5664097729606185`*^9, 3.566409776396814*^9}, {
3.5669396918574557`*^9, 3.566939695557461*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, 3.496451213764926*^9,
3.496528833243797*^9, {3.4975777080419827`*^9, 3.4975777244120054`*^9},
3.4976397903561964`*^9, {3.497663553088928*^9, 3.4976635622149444`*^9},
3.4976651743061757`*^9, {3.4991317949832096`*^9, 3.4991317953032103`*^9}, {
3.561226279503955*^9, 3.5612262831739607`*^9}, {3.5612263210940137`*^9,
3.5612263409240413`*^9}, {3.561227979331335*^9, 3.561227980911338*^9}, {
3.561309917491729*^9, 3.561309917491729*^9}, {3.561422840120915*^9,
3.561422840120915*^9}, {3.5635826847702026`*^9, 3.5635826847702026`*^9}, {
3.563640513877877*^9, 3.563640513877877*^9}, {3.5664098954499474`*^9,
3.5664098954499474`*^9}, {3.566939610497342*^9, 3.566939610497342*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
RowBox[{"\[Integral]",
RowBox[{
RowBox[{"Expand", "[",
RowBox[{
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"]}], ",",
"x"}], "]"}],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.49644160092107*^9,
3.496441663571158*^9, {3.496528814953771*^9, 3.4965288223737817`*^9},
3.497576045657049*^9, 3.497576089857111*^9, 3.4975776169418545`*^9, {
3.497577677171939*^9, 3.497577691381959*^9}, {3.4976395112561064`*^9,
3.4976395477133703`*^9}, {3.49766342891271*^9, 3.497663457772761*^9}, {
3.497663580747777*^9, 3.497663583134581*^9}, {3.4976652106074395`*^9,
3.4976652204666567`*^9}, 3.4976652749419527`*^9, {3.4991316095329504`*^9,
3.4991316274529753`*^9}, {3.4991318033632216`*^9, 3.499131806573226*^9}, {
3.56122609003369*^9, 3.5612261336137514`*^9}, {3.5612261841238217`*^9,
3.561226212973862*^9}, {3.561226245623908*^9, 3.561226251553916*^9},
3.5612273551154613`*^9, 3.561227987771347*^9, {3.561340595399388*^9,
3.5613406051509457`*^9}, 3.5619258475711184`*^9, 3.561926060883417*^9, {
3.5635826458901477`*^9, 3.563582645920148*^9}, {3.563640146403632*^9,
3.563640206635338*^9}, {3.5640012765968027`*^9, 3.5640013158368573`*^9}, {
3.5664097864990063`*^9, 3.5664097932853947`*^9}, {3.566409937449648*^9,
3.56640996820636*^9}, {3.566410007219513*^9, 3.5664100708410654`*^9}, {
3.566939627817366*^9, 3.5669396337573743`*^9}, {3.5676497220579166`*^9,
3.5676497239279194`*^9}, {3.675102446605322*^9, 3.675102446620922*^9}, {
3.6751026080350075`*^9, 3.675102610031811*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, {3.563640393632866*^9, 3.563640396971272*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"sin", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}], "^", "m_."}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a_", "+",
RowBox[{"b_.", "*",
RowBox[{"tan", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}]}], ")"}], "^", "n_."}]}],
",", "x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{"Expand", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}], "^", "m"}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}]}], ")"}], "^", "n"}]}], ",",
"x"}], "]"}], ",", "x"}], "]"}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "e", ",", "f"}], "}"}], ",", "x"}], "]"}],
" ", "&&", " ",
RowBox[{"IntegerQ", "[",
RowBox[{
RowBox[{"(",
RowBox[{"m", "-", "1"}], ")"}], "/", "2"}], "]"}], " ", "&&", " ",
RowBox[{"IGtQ", "[",
RowBox[{"n", ",", "0"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.4964415782510386`*^9,
3.4965287890937347`*^9, 3.4975759366868963`*^9, 3.497577547811758*^9,
3.49758349857209*^9, 3.4976394822868557`*^9, 3.497663384967433*^9, {
3.4976635889065914`*^9, 3.497663592322997*^9}, 3.4976651612957525`*^9, {
3.49913160954295*^9, 3.4991316274529753`*^9}, 3.4991317842431946`*^9,
3.5609702671974792`*^9, 3.5609704436320634`*^9, {3.561226361824071*^9,
3.5612263834141006`*^9}, {3.561226446604189*^9, 3.5612264740842276`*^9},
3.561227358565466*^9, {3.5612280266714015`*^9, 3.5612280408014216`*^9}, {
3.5613099207317333`*^9, 3.561309931941749*^9}, {3.5613406122153497`*^9,
3.561340613378416*^9}, 3.5613406447702117`*^9, 3.561422359510242*^9, {
3.5614227681308146`*^9, 3.5614227763408256`*^9}, 3.5614228733109617`*^9,
3.561925789337036*^9, {3.563582645930148*^9, 3.563582645950148*^9},
3.5635827193002505`*^9, 3.563584203012328*^9, 3.5636403669724197`*^9, {
3.5636404015888805`*^9, 3.5636404405109487`*^9}, {3.563640547012336*^9,
3.5636405527843456`*^9}, {3.563644705777895*^9, 3.563644715995479*^9}, {
3.5640013253968706`*^9, 3.564001349736905*^9}, {3.5664101738574734`*^9,
3.566410177768696*^9}, {3.5664102614169064`*^9, 3.5664102934350777`*^9},
3.5664104870136633`*^9, {3.566939612597345*^9, 3.5669396139473467`*^9},
3.5669397211915007`*^9, {3.566941042616315*^9, 3.5669410531889195`*^9}, {
3.5676497277979245`*^9, 3.567649729587927*^9}, {3.5711041179052134`*^9,
3.5711041392952433`*^9}, {3.675102466107356*^9, 3.6751024893709974`*^9},
3.6751025208266535`*^9, 3.715379583196301*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["2:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"], " ", Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{
FractionBox[
RowBox[{"m", "-", "1"}], "2"], "\[Element]",
"\[DoubleStruckCapitalZ]"}], " ", "\[And]", " ",
RowBox[{"n", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "-"]}]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519247363296011*^9, 3.519247363796012*^9}, 3.519258420199427*^9,
3.5192584863895197`*^9, {3.519320760160028*^9, 3.519320767367241*^9},
3.5193299099191504`*^9, {3.5193300315093203`*^9, 3.519330031709321*^9}, {
3.5193323099968634`*^9, 3.5193324414114943`*^9}, {3.5193415804486094`*^9,
3.5193415824298124`*^9}, {3.5193459537101994`*^9,
3.5193459567210045`*^9}, {3.5193514074002457`*^9,
3.5193514076802464`*^9}, {3.5194037987985263`*^9, 3.519403799124545*^9},
3.519410735765964*^9, {3.5233155477729936`*^9, 3.5233155497329965`*^9}, {
3.5233157343632545`*^9, 3.5233157343632545`*^9}, 3.5239204163859615`*^9, {
3.5239209756969433`*^9, 3.523920976851345*^9}, {3.5239210574690866`*^9,
3.5239210738491154`*^9}, {3.529529514995768*^9, 3.52952953897301*^9}, {
3.529530096003188*^9, 3.5295300961903887`*^9}, 3.534007429411028*^9, {
3.5415552865111437`*^9, 3.541555295262759*^9}, 3.5416244798324237`*^9, {
3.5416246450471644`*^9, 3.541624690056343*^9}, 3.541626366779134*^9,
3.541628901025448*^9, 3.5416290724956875`*^9, 3.5417936736567183`*^9, {
3.541801799109347*^9, 3.5418018093593607`*^9}, 3.5418018795094595`*^9,
3.541801925819524*^9, {3.5418024417002463`*^9, 3.5418024419302464`*^9}, {
3.5418024734002905`*^9, 3.5418024867203093`*^9}, {3.541804026542465*^9,
3.541804026542465*^9}, {3.5418051959141026`*^9, 3.5418051961241026`*^9}, {
3.5418055896246533`*^9, 3.5418055898246536`*^9}, {3.541807928007927*^9,
3.5418079282179275`*^9}, {3.541816058189309*^9, 3.54181605834931*^9}, {
3.541895620942338*^9, 3.5418956211823387`*^9}, {3.553299727838824*^9,
3.5532997300288267`*^9}, {3.5532999791891756`*^9,
3.5532999817291794`*^9}, {3.553305063816294*^9, 3.5533050640562944`*^9}, {
3.5533051019963474`*^9, 3.553305104566351*^9}, {3.5533054443968267`*^9,
3.5533054475368314`*^9}, 3.5533078575102053`*^9, {3.5533106008040457`*^9,
3.5533106008040457`*^9}, {3.5546831350233016`*^9, 3.554683135273302*^9},
3.560216298603896*^9, 3.5606251917417693`*^9, {3.560975839890805*^9,
3.560975839890805*^9}, {3.5609767760421157`*^9, 3.5609767854021287`*^9}, {
3.560976852662223*^9, 3.560976853522224*^9}, 3.5609769271023273`*^9, {
3.560976964532379*^9, 3.5609769756223946`*^9}, {3.561265017585923*^9,
3.5612650326711497`*^9}, {3.561309913861724*^9, 3.561309913861724*^9},
3.561310285412244*^9, 3.5613129177059293`*^9, {3.561422814190879*^9,
3.5614228294009*^9}, 3.561925845701116*^9, 3.5619260595434155`*^9,
3.563582501469946*^9, {3.5635826458501477`*^9, 3.5635826458601475`*^9}, {
3.5635826838002005`*^9, 3.5635826838002005`*^9}, {3.5636401143299756`*^9,
3.5636401351716127`*^9}, {3.563640488668233*^9, 3.5636405189634867`*^9},
3.563640727676253*^9, {3.56400126775679*^9, 3.5640012686867914`*^9}, {
3.5664097415588894`*^9, 3.5664097555606594`*^9}, {3.566409889423624*^9,
3.566409891532736*^9}, {3.566410469315651*^9, 3.5664104695616646`*^9}, {
3.5669396551174045`*^9, 3.5669396644674177`*^9}, 3.566939787561594*^9, {
3.5676495317276497`*^9, 3.5676495319076505`*^9}, {3.568662109217451*^9,
3.568662110317453*^9}, {3.5711041666752815`*^9, 3.57110417262529*^9},
3.6750223816808786`*^9, {3.6751024466521225`*^9, 3.6751024466521225`*^9},
3.6751026134482174`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Algebraic expansion", "Subsubsection",
CellChangeTimes->{
3.479686820458373*^9, {3.490657960122612*^9, 3.49065796095366*^9},
3.4964414996009283`*^9, {3.4964447088058186`*^9, 3.4964447131058245`*^9},
3.496528844063812*^9, 3.497575950496916*^9, 3.4975775797018027`*^9,
3.497639496888481*^9, 3.4976636252234545`*^9, 3.497665167504564*^9, {
3.561226054703641*^9, 3.5612260578536453`*^9}, {3.5636402263069725`*^9,
3.5636402320945826`*^9}, {3.5664097729606185`*^9, 3.566409776396814*^9}, {
3.5711041880253115`*^9, 3.5711041894153132`*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[", "z", "]"}]}]}], "\[Equal]",
FractionBox[
RowBox[{
RowBox[{"a", " ",
RowBox[{"Cos", "[", "z", "]"}]}], "+",
RowBox[{"b", " ",
RowBox[{"Sin", "[", "z", "]"}]}]}],
RowBox[{"Cos", "[", "z", "]"}]]}]], "Input",
CellChangeTimes->{{3.5612260367936153`*^9, 3.5612260481036315`*^9}}]
}], "Subsubsection",
CellChangeTimes->{
3.479686820458373*^9, {3.490657960122612*^9, 3.49065796095366*^9},
3.4964414996009283`*^9, {3.4964447088058186`*^9, 3.4964447131058245`*^9},
3.496528844063812*^9, 3.497575950496916*^9, 3.4975775797018027`*^9,